From: kfraser@localhost.localdomain Date: Fri, 31 Aug 2007 15:50:26 +0000 (+0100) Subject: xend: Always build lowlevel security modules, as there are some X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14987^2~19 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=87a39e42b82c867e81b5687cef4ec8f2f090f417;p=xen.git xend: Always build lowlevel security modules, as there are some dependencies on these from with xend proper. Signed-off-by: Keir Fraser --- diff --git a/tools/python/setup.py b/tools/python/setup.py index 0b55ce7543..25c87c3b91 100644 --- a/tools/python/setup.py +++ b/tools/python/setup.py @@ -59,15 +59,10 @@ ptsname = Extension("ptsname", libraries = libraries, sources = [ "ptsname/ptsname.c" ]) -modules = [ xc, xs, ptsname ] +modules = [ xc, xs, ptsname, acm, flask ] if os.uname()[0] == 'SunOS': modules.append(scf) -if os.environ.get('XEN_SECURITY_MODULE') == 'acm': - modules.append(acm) -if os.environ.get('XEN_SECURITY_MODULE') == 'flask': - modules.append(flask) - setup(name = 'xen', version = '3.0', description = 'Xen',